home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Source Code
/
Pascal
/
Applications
/
P4⁄Mac 2.0d4
/
Test programs
/
hello1.p
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-09-26
|
154 b
|
11 lines
|
[
TEXT/Rich
]
program hello(input, output);
var
i:integer;
begin
writeln('This is a bit too long');
writeln('Hello, World!');
for i:=0 to 10 do
writeln(i);
end.